.location{
    width:100%;
}
.loca_map{
    width:100%;
    height:calc(100vh - 350px);
    margin-bottom:0px;
}
.loca_map iframe{
    width:100%;
    height:100%;
}

.loca_info{
    width:100%;
    margin-bottom:20px;
}
.loca_info ul{
    margin-bottom:20px;
}
.loca_info ul li p{
    font-size:14px;
    font-weight: 400;
    color: var(--gray66);
    line-height: 1;
}
.loca_info ul li{
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}
.loca_info ul li span.copy_btn{
    padding:1px 6px 3px;
    background:var(--gray66);
    color: var(--whiteff);
    font-size:12px;
    line-height:1;;
    border-radius: 5px;;
}
.loca_info ul li:first-child{
    font-size:16px;
    font-weight: 600;
    color: var(--black22);
    margin-bottom:10px;
    display: block;
}
.map_btn{
    display:flex;
    gap:10px;
}
.map_btn button{
    flex:1;
    padding:6px 0;
    color: var(--surfcolor);
    border:1px solid var(--surfcolor);
    border-radius: 5px;
    font-size:14px;;
}

.location.sticky{
    position:sticky;
    top:0;
    overflow: hidden;
}
.location.sticky .loca_map{
    height:calc(100vh - 250px);
}
/* 지도문의팝업 */
.question_map h4{
    font-size:16px;
    color:var(--black22);
    font-weight: 600;;
  }
  .question_map .question_info{
    padding:40px;
    text-align: center;
  }
  .question_map .question_info h4{
    font-size:20px;
    font-weight: 900;
    color: #1975a0;
    margin-bottom:5px;
  }
  .question_map .question_info span{
    color:var(--gray66);
    font-size:17px;
  }
  .question_map .question_info p{
    margin-top:20px;
    font-size:15px;
    color: var(--gray44);
  }
  .question_map .loca_pop_btn{
    margin-top:20px;
  }
  .question_map .loca_pop_btn button{
    width:100%;
    height:35px;
    text-align: center;
    background:var(--graydd);
    color:var(--gray44);
    border-radius: 5px;
    font-size:14px;;
  }
  
  @media (width <= 405px){
    .map_btn button{
        font-size:13px;
        letter-spacing: -0.5px;
    }
  }  
  @media (width <= 365px){
    .map_btn{
        justify-content: space-between;
    }
    .map_btn button{
        flex:none;
        padding:6px 10px;
    }
  }  
  @media (width <= 330px){
    .map_btn{
        display:block;
    }
    .map_btn button{
        width:100%;
        margin-bottom:5px;
    }
  }  